List Destinations
Route
/v2/streaming/destinations
Description
Retrieve a list of all streaming destinations configured in your organization. Destinations define where streaming data is sent.
Method
GET
Inputs
| Parameter | Type | Required | Description |
|---|---|---|---|
| None | - | - | No parameters required |
Output
| Field | Type | Description |
|---|---|---|
resources | array[Destination] | Array of destination objects |
errors | array[Error] | Any errors encountered |
Destination Object Structure
| Field | Type | Description |
|---|---|---|
id | string | Unique destination identifier |
name | string | Human-readable name |
description | string | Detailed description |
format | string | Data format (json_lines, json) |
type | string | Destination type (https) |
encoding | string | Data encoding (gzip, uncompressed) |
https_config | object | HTTPS destination configuration |
Rate Limit
- 60 requests per minute per API key
- 5 concurrent requests per endpoint
Example Response
{
"resources": [
{
"id": "dest-123",
"name": "Security SIEM",
"description": "Primary security information and event management system",
"format": "json_lines",
"type": "https",
"encoding": "gzip",
"https_config": {
"uri": "https://siem.company.com/api/events",
"ignore_ssl_errors": false
}
},
{
"id": "dest-456",
"name": "Analytics Platform",
"description": "Data analytics and reporting platform",
"format": "json",
"type": "https",
"encoding": "encoding_unspecified",
"https_config": {
"uri": "https://analytics.company.com/webhook",
"ignore_ssl_errors": false
}
}
],
"errors": []
}